home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 9116 < prev    next >
Encoding:
Text File  |  1996-08-05  |  821 b   |  38 lines

  1. Path: news.bridge.net!news
  2. From: David Byrden <100101.2547@compuserve.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Unresolved External...
  5. Date: 28 Feb 1996 19:22:37 GMT
  6. Organization: self-employed
  7. Message-ID: <4h2a1t$518@news.bridge.net>
  8. References: <4h1oup$rh0@news.ppg.com>
  9. NNTP-Posting-Host: ppp-mia2-68.bridge.net
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  14.  
  15.  
  16. >> I am trying to use a library of image analysis routines but whenever I 
  17. >> call one of the routines, I get an "unresolved external" error during >> the linking stage
  18.  
  19.  
  20.    Possibly the library was written in C and the headers are not aware of 
  21. C++.
  22.    Try enclosing your header like this;
  23.  
  24.  
  25.  
  26. extern "C"
  27. {
  28. #include <header>
  29. }
  30.  
  31.  
  32.  
  33.  
  34.  
  35.                           David
  36.  
  37.  
  38.